home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue35 / eval_dan / EVAL_DAN.ZIP / mathtest.~df / mathtest.txt
Text File  |  1997-12-30  |  3KB  |  167 lines

  1. object Form1: TForm1
  2.   Left = 272
  3.   Top = 182
  4.   Width = 668
  5.   Height = 345
  6.   Caption = 'Evaluator Tester'
  7.   Font.Color = clWindowText
  8.   Font.Height = -11
  9.   Font.Name = 'MS Sans Serif'
  10.   Font.Style = []
  11.   OnCreate = FormCreate
  12.   OnDestroy = FormDestroy
  13.   PixelsPerInch = 96
  14.   TextHeight = 13
  15.   object LBL_Value: TLabel
  16.     Left = 136
  17.     Top = 40
  18.     Width = 193
  19.     Height = 13
  20.     AutoSize = False
  21.   end
  22.   object EDT_Expression: TEdit
  23.     Left = 136
  24.     Top = 56
  25.     Width = 193
  26.     Height = 21
  27.     TabOrder = 0
  28.   end
  29.   object TreeView: TTreeView
  30.     Left = 336
  31.     Top = 0
  32.     Width = 321
  33.     Height = 313
  34.     ShowButtons = False
  35.     ReadOnly = True
  36.     Indent = 19
  37.     ParentColor = False
  38.     TabOrder = 2
  39.   end
  40.   object BTN_Evaluate: TButton
  41.     Left = 24
  42.     Top = 32
  43.     Width = 105
  44.     Height = 25
  45.     Caption = 'Evaluate'
  46.     TabOrder = 3
  47.     OnClick = BTN_EvaluateClick
  48.   end
  49.   object BTN_MakeTree: TButton
  50.     Left = 24
  51.     Top = 56
  52.     Width = 105
  53.     Height = 25
  54.     Caption = 'Make Tree'
  55.     TabOrder = 1
  56.     OnClick = BTN_MakeTreeClick
  57.   end
  58.   object Notebook: TTabbedNotebook
  59.     Left = 0
  60.     Top = 88
  61.     Width = 329
  62.     Height = 225
  63.     PageIndex = 1
  64.     TabFont.Color = clBtnText
  65.     TabFont.Height = -11
  66.     TabFont.Name = 'MS Sans Serif'
  67.     TabFont.Style = []
  68.     TabOrder = 4
  69.     object TTabPage
  70.       Left = 4
  71.       Top = 24
  72.       Caption = 'Tokens'
  73.       object MEMO_Tokens: TMemo
  74.         Left = 8
  75.         Top = 4
  76.         Width = 305
  77.         Height = 181
  78.         ReadOnly = True
  79.         ScrollBars = ssVertical
  80.         TabOrder = 0
  81.       end
  82.     end
  83.     object TTabPage
  84.       Left = 4
  85.       Top = 24
  86.       Caption = 'Variables'
  87.       object Label1: TLabel
  88.         Left = 240
  89.         Top = 8
  90.         Width = 31
  91.         Height = 13
  92.         Caption = 'Name:'
  93.       end
  94.       object Label2: TLabel
  95.         Left = 240
  96.         Top = 48
  97.         Width = 30
  98.         Height = 13
  99.         Caption = 'Value:'
  100.       end
  101.       object BTN_Change: TButton
  102.         Left = 240
  103.         Top = 96
  104.         Width = 75
  105.         Height = 25
  106.         Caption = 'CHANGE'
  107.         TabOrder = 5
  108.         OnClick = BTN_ChangeClick
  109.       end
  110.       object LB_Vars: TListBox
  111.         Left = 8
  112.         Top = 8
  113.         Width = 225
  114.         Height = 185
  115.         Columns = 1
  116.         ExtendedSelect = False
  117.         ItemHeight = 13
  118.         TabOrder = 0
  119.       end
  120.       object EDT_VarName: TEdit
  121.         Left = 240
  122.         Top = 24
  123.         Width = 73
  124.         Height = 21
  125.         AutoSize = False
  126.         TabOrder = 1
  127.       end
  128.       object EDT_VarData: TEdit
  129.         Left = 240
  130.         Top = 64
  131.         Width = 73
  132.         Height = 21
  133.         AutoSize = False
  134.         TabOrder = 2
  135.         Text = '0'
  136.       end
  137.       object BTN_New: TButton
  138.         Left = 240
  139.         Top = 120
  140.         Width = 75
  141.         Height = 25
  142.         Caption = 'NEW'
  143.         TabOrder = 3
  144.         OnClick = BTN_NewClick
  145.       end
  146.       object BTN_Delete: TButton
  147.         Left = 240
  148.         Top = 144
  149.         Width = 75
  150.         Height = 25
  151.         Caption = 'DELETE'
  152.         TabOrder = 4
  153.         OnClick = BTN_DeleteClick
  154.       end
  155.       object BTN_Clear: TButton
  156.         Left = 240
  157.         Top = 168
  158.         Width = 75
  159.         Height = 25
  160.         Caption = 'CLEAR'
  161.         TabOrder = 6
  162.         OnClick = BTN_ClearClick
  163.       end
  164.     end
  165.   end
  166. end
  167.